- GList
alias GList = _GList
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
- da_g_list_alloc
alias da_g_list_alloc = GList* function()
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
- da_g_list_append
alias da_g_list_append = GList* function(GList* list, gpointer data)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
- da_g_list_concat
alias da_g_list_concat = GList* function(GList* list1, GList* list2)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
- da_g_list_copy
alias da_g_list_copy = GList* function(GList* list)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
- da_g_list_copy_deep
alias da_g_list_copy_deep = GList* function(GList* list, GCopyFunc func, gpointer user_data)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
- da_g_list_delete_link
alias da_g_list_delete_link = GList* function(GList* list, GList* link_)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
- da_g_list_find
alias da_g_list_find = GList* function(GList* list, gconstpointer data)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
- da_g_list_find_custom
alias da_g_list_find_custom = GList* function(GList* list, gconstpointer data, GCompareFunc func)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
- da_g_list_first
alias da_g_list_first = GList* function(GList* list)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
- da_g_list_foreach
alias da_g_list_foreach = void function(GList* list, GFunc func, gpointer user_data)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
- da_g_list_free
alias da_g_list_free = void function(GList* list)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
- da_g_list_free_1
alias da_g_list_free_1 = void function(GList* list)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
- da_g_list_free_full
alias da_g_list_free_full = void function(GList* list, GDestroyNotify free_func)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
- da_g_list_index
alias da_g_list_index = gint function(GList* list, gconstpointer data)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
- da_g_list_insert
alias da_g_list_insert = GList* function(GList* list, gpointer data, gint position)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
- da_g_list_insert_before
alias da_g_list_insert_before = GList* function(GList* list, GList* sibling, gpointer data)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
- da_g_list_insert_sorted
alias da_g_list_insert_sorted = GList* function(GList* list, gpointer data, GCompareFunc func)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
- da_g_list_insert_sorted_with_data
alias da_g_list_insert_sorted_with_data = GList* function(GList* list, gpointer data, GCompareDataFunc func, gpointer user_data)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
- da_g_list_last
alias da_g_list_last = GList* function(GList* list)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
- da_g_list_length
alias da_g_list_length = guint function(GList* list)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
- da_g_list_nth
alias da_g_list_nth = GList* function(GList* list, guint n)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
- da_g_list_nth_data
alias da_g_list_nth_data = gpointer function(GList* list, guint n)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
- da_g_list_nth_prev
alias da_g_list_nth_prev = GList* function(GList* list, guint n)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
- da_g_list_position
alias da_g_list_position = gint function(GList* list, GList* llink)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
- da_g_list_prepend
alias da_g_list_prepend = GList* function(GList* list, gpointer data)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
- da_g_list_remove
alias da_g_list_remove = GList* function(GList* list, gconstpointer data)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
- da_g_list_remove_all
alias da_g_list_remove_all = GList* function(GList* list, gconstpointer data)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
- da_g_list_remove_link
alias da_g_list_remove_link = GList* function(GList* list, GList* llink)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
- da_g_list_reverse
alias da_g_list_reverse = GList* function(GList* list)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
- da_g_list_sort
alias da_g_list_sort = GList* function(GList* list, GCompareFunc compare_func)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
- da_g_list_sort_with_data
alias da_g_list_sort_with_data = GList* function(GList* list, GCompareDataFunc compare_func, gpointer user_data)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
- g_list_alloc
GList* g_list_alloc()
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
- g_list_append
GList* g_list_append(GList* list, gpointer data)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
- g_list_concat
GList* g_list_concat(GList* list1, GList* list2)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
- g_list_copy
GList* g_list_copy(GList* list)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
- g_list_copy_deep
GList* g_list_copy_deep(GList* list, GCopyFunc func, gpointer user_data)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
- g_list_delete_link
GList* g_list_delete_link(GList* list, GList* link_)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
- g_list_find
GList* g_list_find(GList* list, gconstpointer data)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
- g_list_find_custom
GList* g_list_find_custom(GList* list, gconstpointer data, GCompareFunc func)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
- g_list_first
GList* g_list_first(GList* list)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
- g_list_foreach
void g_list_foreach(GList* list, GFunc func, gpointer user_data)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
- g_list_free
void g_list_free(GList* list)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
- g_list_free_1
void g_list_free_1(GList* list)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
- g_list_free_full
void g_list_free_full(GList* list, GDestroyNotify free_func)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
- g_list_index
gint g_list_index(GList* list, gconstpointer data)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
- g_list_insert
GList* g_list_insert(GList* list, gpointer data, gint position)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
- g_list_insert_before
GList* g_list_insert_before(GList* list, GList* sibling, gpointer data)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
- g_list_insert_sorted
GList* g_list_insert_sorted(GList* list, gpointer data, GCompareFunc func)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
- g_list_insert_sorted_with_data
GList* g_list_insert_sorted_with_data(GList* list, gpointer data, GCompareDataFunc func, gpointer user_data)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
- g_list_last
GList* g_list_last(GList* list)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
- g_list_length
guint g_list_length(GList* list)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
- g_list_nth
GList* g_list_nth(GList* list, guint n)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
- g_list_nth_data
gpointer g_list_nth_data(GList* list, guint n)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
- g_list_nth_prev
GList* g_list_nth_prev(GList* list, guint n)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
- g_list_position
gint g_list_position(GList* list, GList* llink)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
- g_list_prepend
GList* g_list_prepend(GList* list, gpointer data)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
- g_list_remove
GList* g_list_remove(GList* list, gconstpointer data)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
- g_list_remove_all
GList* g_list_remove_all(GList* list, gconstpointer data)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
- g_list_remove_link
GList* g_list_remove_link(GList* list, GList* llink)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
- g_list_reverse
GList* g_list_reverse(GList* list)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
- g_list_sort
GList* g_list_sort(GList* list, GCompareFunc compare_func)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
- g_list_sort_with_data
GList* g_list_sort_with_data(GList* list, GCompareDataFunc compare_func, gpointer user_data)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
- g_list_alloc
da_g_list_alloc g_list_alloc;
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
- g_list_append
da_g_list_append g_list_append;
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
- g_list_concat
da_g_list_concat g_list_concat;
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
- g_list_copy
da_g_list_copy g_list_copy;
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
- g_list_copy_deep
da_g_list_copy_deep g_list_copy_deep;
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
- g_list_delete_link
da_g_list_delete_link g_list_delete_link;
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
- g_list_find
da_g_list_find g_list_find;
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
- g_list_find_custom
da_g_list_find_custom g_list_find_custom;
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
- g_list_first
da_g_list_first g_list_first;
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
- g_list_foreach
da_g_list_foreach g_list_foreach;
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
- g_list_free
da_g_list_free g_list_free;
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
- g_list_free_1
da_g_list_free_1 g_list_free_1;
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
- g_list_free_full
da_g_list_free_full g_list_free_full;
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
- g_list_index
da_g_list_index g_list_index;
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
- g_list_insert
da_g_list_insert g_list_insert;
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
- g_list_insert_before
da_g_list_insert_before g_list_insert_before;
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
- g_list_insert_sorted
da_g_list_insert_sorted g_list_insert_sorted;
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
- g_list_insert_sorted_with_data
da_g_list_insert_sorted_with_data g_list_insert_sorted_with_data;
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
- g_list_last
da_g_list_last g_list_last;
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
- g_list_length
da_g_list_length g_list_length;
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
- g_list_nth
da_g_list_nth g_list_nth;
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
- g_list_nth_data
da_g_list_nth_data g_list_nth_data;
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
- g_list_nth_prev
da_g_list_nth_prev g_list_nth_prev;
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
- g_list_position
da_g_list_position g_list_position;
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
- g_list_prepend
da_g_list_prepend g_list_prepend;
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
- g_list_remove
da_g_list_remove g_list_remove;
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
- g_list_remove_all
da_g_list_remove_all g_list_remove_all;
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
- g_list_remove_link
da_g_list_remove_link g_list_remove_link;
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
- g_list_reverse
da_g_list_reverse g_list_reverse;
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
- g_list_sort
da_g_list_sort g_list_sort;
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
- g_list_sort_with_data
da_g_list_sort_with_data g_list_sort_with_data;
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.